============================================================================================================================
Modification Title: Admin Notepad

Version: 1.0

Author: John Briggs

Description: This modification will provide a new tool in the administration panel to keep notes in a notepad for administrators only.

Copyright:  2010 John Briggs. All Rights Reserved.

Compatability: XMB 1.9.5 Final SP1

Install Note: Before adding this modification to your forum, you should back up all files related to this modification.

License Note: This modification is released under the GPL License v3. A copy is provided with this software package.

Author Note:
You downloaded this modification from XMBGarage.com, the #1 source for XMB related downloads.
Please visit http://www.xmbgarage.com/ for support.
============================================================================================================================
=======
Step 1:
=======
====================================
Go To Administration Panel --> Insert Raw SQL
====================================

Upload provided file named "SQL.txt" & click "Submit Changes" button.

============================================================================================================================
=======
Step 2:
=======
===========================
Edit File: include/admin.user.inc.php
===========================
==========
Find Code:
==========

    &raquo;&nbsp;<a href="cp2.php?action=modlog"><?php echo $lang['textmodlogs']?></a><br />
    &raquo;&nbsp;<a href="cp2.php?action=cplog"><?php echo $lang['textcplogs']?></a>

================
Replace Code With:
================

    <!-- Admin Notepad Mod Begin -->
    &raquo;&nbsp;<a href="cp_notepad.php"><?php echo $lang['Admin_Notes']?></a><br />
    <!-- Admin Notepad Mod End -->
    &raquo;&nbsp;<a href="cp2.php?action=cplog"><?php echo $lang['textcplogs']?></a><br />
    &raquo;&nbsp;<a href="cp2.php?action=modlog"><?php echo $lang['textmodlogs']?></a><br />

============================================================================================================================
=======
Step 3:
=======
===============
Edit File: misc.php
===============
==========
Find Code:
==========

} elseif (false !== strpos($url, '/cp.php') || false !== strpos($url, '/cp2.php')

==================
Replace Code With:
==================

} elseif (false !== strpos($url, '/cp.php') || false !== strpos($url, '/cp2.php') || false !== strpos($url, '/cp_notepad.php')

============================================================================================================================
=======
Step 4:
=======
=======================
Edit File: lang/English.lang.php
=======================
============================
Add Code To End Of File Above  ?>
============================

// Admin Notepad Mod Begin
$lang['Admin_Notes'] = "Admin Notepad";
$lang['Admin_Notes_Note'] = "<small><strong>Note:</strong> Administrators can keep vital information &amp; notes here for personal records.</small>";
$lang['Admin_Notes_Clear'] = "Clear Notes";
$lang['Admin_Notes_Submit'] = "Submit Notes";
$lang['Admin_Notes_Update'] = "Admin Notepad Updated Successfully!";
$lang['Admin_Notes_Cleared'] = "Admin Notepad Cleared Successfully!";
// Admin Notepad Mod End

============================================================================================================================
=======
Step 5:
=======

Upload provided file named "cp_notepad.php" to your forum directory.

============================================================================================================================
Enjoy!